home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / role / AMScen_0_9.lha / AMScen / basics.m < prev    next >
Text File  |  1995-01-21  |  1KB  |  41 lines

  1. Print("Creating basic scenario constructs, tools and commands.\n").
  2.  
  3. /* tp_misc is used for symbols that are used in several files, but which are
  4.    not wanted to be public. */
  5. private tp_misc CreateTable().
  6. use tp_misc
  7.  
  8. /* Basic properties and their accessing routines. Direction stuff. */
  9. public t_base CreateTable().
  10. use t_base
  11. source st:base.m
  12.  
  13. /* Routines for dealing with icons. */
  14. public t_icons CreateTable().
  15. use t_icons
  16. source st:icons.m
  17.  
  18. /* Routines to do the graphics styles used in this scenario. */
  19. public t_graphics CreateTable().
  20. use t_graphics
  21. source st:graphics.m
  22.  
  23. /* General utility stuff, banks, stores, top-level parser, setup, etc. */
  24. public t_util CreateTable().
  25. public t_roomTypes CreateTable().
  26. use t_util
  27. use t_roomTypes
  28. source st:util.m
  29.  
  30. /* verbs.m needed early because of dependencies in quests.m, fight.m */
  31. /* The basic verbs in the scenario. */
  32. source st:verbs.m
  33.  
  34. /* The 'chat' command, and a bunch of pose stuff. */
  35. source st:chat.m
  36.  
  37. /* The quest utilities - Questor, list of quests, etc. */
  38. public t_quests CreateTable().
  39. use t_quests
  40. source st:quests.m
  41.